home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 21 / PC Gamer IT CD 21.iso / patches / lb108e.exe / MANINST.BAT < prev    next >
DOS Batch File  |  1996-08-22  |  2KB  |  134 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo.
  5. echo **************************
  6. echo ** Janes AH-64D Longbow **
  7. echo **************************
  8. echo.
  9. echo Longbow manual install....
  10. echo.
  11. echo Please be sure the source and target drives are correct before proceding.
  12. echo. 
  13. echo.
  14. choice Continue with install of Longbow from CD-ROM %1 to %2\%3
  15. if errorlevel 2 goto end
  16.  
  17. :check
  18. if "%1"=="" goto error
  19. if "%2"=="" goto error
  20. if "%1"=="%2" goto driveltr
  21. if "%1"=="a:" goto error
  22. if "%1"=="b:" goto error
  23. if "%1"=="c:" goto error
  24. if "%2"=="a:" goto error
  25. if "%2"=="b:" goto error
  26. if "%3"=="" goto default
  27.  
  28. goto specific
  29.  
  30. :driveltr
  31. cls
  32. echo.
  33. echo.
  34. echo.
  35. echo.
  36. echo The Source and Target can not be the same drive.
  37. echo.
  38. echo The Source drive must be the CD-ROM.
  39. echo.
  40. echo The Target must be a Hard Drive. 
  41. echo.
  42. echo.
  43. echo.
  44. goto end
  45.  
  46. :cd1
  47. @echo off
  48. cls
  49. echo.
  50. echo You must install Jane's AH-64D Longbow from CD #1.
  51. echo.
  52. goto end
  53.  
  54. :error
  55. cd\
  56. cls
  57. echo.
  58. echo.
  59. echo.
  60. echo.
  61. echo Format of maninst.bat:
  62. echo MANINST [source(CD) drive:] [destination drive:] [directory]
  63. echo (eg. maninst d: c: games)
  64. echo.
  65. echo NOTE: directory is optional.  If no directory is specified, then Longbow
  66. echo will install to the default (JANES\LONGBOW).
  67. echo.
  68. echo.
  69. echo There has been an error in installation....
  70. deltree %3\janes 
  71. echo.
  72. goto end
  73.  
  74. :specific
  75. %2
  76. cd\
  77. md %2\%3
  78. cd %3
  79. goto d2
  80. :default
  81. %2
  82. cd\
  83. :d2
  84. %1
  85. if not exist jlbcd_01 goto cd1
  86. %2
  87. md janes
  88. md janes\longbow
  89. md janes\longbow\record
  90. md janes\longbow\appearnc
  91. md janes\longbow\palette
  92.  
  93. cd janes\longbow
  94. copy %1\readme.txt 
  95. copy %1\longbow.ico
  96. if not exist longbow.ico goto error
  97. copy %1\bootdisk.exe
  98. copy %1\iff.tre
  99. if not exist iff.tre goto error  
  100. copy %1\sfx.tre 
  101. copy %1\speech.tre 
  102.  
  103. copy %1\game\*.exe 
  104. copy %1\game\*.lst 
  105. copy %1\game\*.dig 
  106. copy %1\game\*.dll 
  107. copy %1\game\*.ini 
  108. copy %1\game\*.bin 
  109. copy %1\game\*.dat
  110. copy %1\game\*.txt
  111. copy %1\game\*.pif
  112. copy %1\game\*.iff
  113. copy %1\game\*.raw
  114. copy %1\game\*.pal
  115. copy %1\game\*.kmp
  116. copy %1\game\*.jmp
  117. copy %1\game\*.mdf
  118.  
  119. cd appearnc
  120. copy %1\appearnc\*.*
  121. cd ..
  122. cd palette
  123. copy %1\palette\*.*
  124. cd ..
  125. cd record
  126. copy %1\game\*.rcd 
  127.  
  128. cd ..
  129. setsound
  130.  
  131. :end
  132. echo.
  133. echo.
  134.